Begin A1_DAT_SRT_Feather_IDS

Short DAT_SRTIC
Short DAT_SRTFIN

If ( OnActivate == 1 )
	Set DAT_SRTFIN to 2
EndIf

If ( DAT_SRTFIN < 2 )
	Return
EndIf

If ( Player->GetAlchemy >= 5 )
	Set DAT_SRTIC to (  "A1_DAT_SRT_SortBag"->GetItemCount, "ingred_heather_01" )
Else
	Set DAT_SRTIC to 0
EndIf

If ( DAT_SRTIC > 0 )
	While ( DAT_SRTIC > 0 )
		Set DAT_SRTIC to ( DAT_SRTIC - 1 )
		Player->AddItem, "ingred_heather_01", 1
		 "A1_DAT_SRT_SortBag"->RemoveItem, "ingred_heather_01", 1
	EndWhile
EndIf

If ( Player->GetAlchemy >= 30 )
	Set DAT_SRTIC to (  "A1_DAT_SRT_SortBag"->GetItemCount, "ingred_ruby_01" )
Else
	Set DAT_SRTIC to 0
EndIf

If ( DAT_SRTIC > 0 )
	While ( DAT_SRTIC > 0 )
		Set DAT_SRTIC to ( DAT_SRTIC - 1 )
		Player->AddItem, "ingred_ruby_01", 1
		 "A1_DAT_SRT_SortBag"->RemoveItem, "ingred_ruby_01", 1
	EndWhile
EndIf

If ( Player->GetAlchemy >= 5 )
	Set DAT_SRTIC to (  "A1_DAT_SRT_SortBag"->GetItemCount, "ingred_scuttle_01" )
Else
	Set DAT_SRTIC to 0
EndIf

If ( DAT_SRTIC > 0 )
	While ( DAT_SRTIC > 0 )
		Set DAT_SRTIC to ( DAT_SRTIC - 1 )
		Player->AddItem, "ingred_scuttle_01", 1
		 "A1_DAT_SRT_SortBag"->RemoveItem, "ingred_scuttle_01", 1
	EndWhile
EndIf

PlaySound "Item Misc Up"

MessageBox "You take what ingredients you determine can be used to create a potion of Feather from the bag.",

Set DAT_SRTFIN to 1

End